From a56b4a5a4b0095466c1e4e6387ec21e2007e5104 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Thu, 1 Jun 2006 11:57:33 +0100 Subject: [PATCH] Reraise exceptions caught in create.py, so that the error handling in main.py can handle it neatly. Signed-off-by: Daniel Miles --- tools/python/xen/xm/create.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/python/xen/xm/create.py b/tools/python/xen/xm/create.py index fffa836896..2a6a398738 100644 --- a/tools/python/xen/xm/create.py +++ b/tools/python/xen/xm/create.py @@ -903,10 +903,15 @@ def make_domain(opts, config): else: err("%s" % ex.faultString) except Exception, ex: + # main.py has good error messages that let the user know what failed. + # unless the error is a create.py specific thing, it should be handled + # at main. The purpose of this general-case 'Exception' handler is to + # clean up create.py specific processes/data but since create.py does + # not know what to do with the error, it should pass it up. import signal if vncpid: os.kill(vncpid, signal.SIGKILL) - err(str(ex)) + raise ex dom = sxp.child_value(dominfo, 'name') -- 2.30.2